home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / wincron.arc / ATTNSRC.ARC / MAKEFILE < prev   
Encoding:
Text File  |  1991-10-07  |  250 b   |  15 lines

  1. CARGS= -c -AS -W2 -Gsw -Owi -Zpe
  2. CC=cl $(CARGS)
  3.  
  4. .c.obj:
  5.     $(CC) $*.c > $*.err
  6.  
  7. OBJS=attn.obj
  8.  
  9.  
  10. main.exe: $(OBJS) attn.def
  11.     link /NOD /NOE $(OBJS),attn.exe,,libw slibcew, attn.def;
  12.     rc -b attn.exe
  13.  
  14. attn.obj:       attn.c attn.h
  15.